.contact_page {
    padding: 50px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Align items horizontally in the center */
}

.info-column {
    margin-bottom: 30px;
}

.info-column ul {
    list-style: none;
    padding: 0;
}

.info-column ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.social-icon-three {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.social-icon-three li {
    display: inline-block;
    margin-right: 10px;
}

.social-icon-three li:last-child {
    margin-right: 0;
}

.social-icon-three a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #218838;
}

.reqDemo_error {
    color: #dc3545;
}

.about-us-section {
    position: relative;
    background-image: url('/images/con.jpg');
    /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    height: 30vh;
    /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    /* Text color to contrast with the background */
    text-align: center;
    /* Center text alignment */
}


/* Overlay Styling */

.about-us-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black overlay with 50% opacity */
}


/* Content Styling */

.about-us-section .content {
    position: relative;
    z-index: 1;
    /* Ensure content is above the overlay */
    padding: 20px;
}


/* Section Header Styling */

.section-header {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    padding: 10px 0;
    color: #fff;
}


/* Breadcrumb Styling */

.breadcrumb {
    background-color: transparent;
    padding: 10px 15px;
    margin: 0;
    list-style: none;
    border-radius: 4px;
    display: inline-block;
}

.breadcrumb li {
    display: inline;
    font-size: 14px;
}

.breadcrumb li a {
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

.breadcrumb li a:hover {
    text-decoration: none;
    color: blue;
}

.breadcrumb .active {
    color: white;
}

.showmenu {
    display: flex !important;
    width: 100px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        /* Align items to the start */
        background-color: #212222;
        width: 100%;
        position: absolute;
        top: 50px;
        right: 0;
        padding: 10px 0;
        z-index: 999;
    }
    .navbar-toggler {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
    }
    .hamburger-icon {
        display: block;
    }
    .navbar-collapse.showmenu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        height: auto;
        padding-left: 20px;
    }
    nav ul li {
        display: block;
        width: 100%;
        border-bottom: 0.9px solid #929497;
    }
    nav ul li a {
        padding: 10px 20px;
        display: block;
        color: #929497;
        text-decoration: none;
        text-align: left;
        border-bottom: 2px solid #013366;
    }
    nav ul li a:hover {
        background-color: #016604;
    }
}